projects
/
emacs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
9569916
)
Fix cursor display (bug#23993)
author
Alan Third
<alan@idiocy.org>
Fri, 15 Jul 2016 20:02:47 +0000
(21:02 +0100)
committer
Alan Third
<alan@idiocy.org>
Sat, 16 Jul 2016 08:19:05 +0000
(09:19 +0100)
* src/xdisp.c (get_phys_cursor_geometry): Fix invalid C operator.
src/xdisp.c
patch
|
blob
|
history
diff --git
a/src/xdisp.c
b/src/xdisp.c
index 14d6f8fcf93fdca4c78b85abd0af13fc3bd48118..efd5f54fa39f57a6b4c0d9cb32bfa2029c52998f 100644
(file)
--- a/
src/xdisp.c
+++ b/
src/xdisp.c
@@
-2237,7
+2237,7
@@
get_phys_cursor_geometry (struct window *w, struct glyph_row *row,
ascent = row->ascent;
if (row->ascent < glyph->ascent)
{
- y
=-
glyph->ascent - row->ascent;
+ y
-=
glyph->ascent - row->ascent;
ascent = glyph->ascent;
}